Socket
Socket
Sign inDemoInstall

@ndhoule/map

Package Overview
Dependencies
1
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ndhoule/map


Version published
Maintainers
1
Created

Changelog

Source

2.0.1

  • Bump @ndhoule/each, @ndhoule/keys dependency to fix Browserify builds

Readme

Source

map CI

Apply a function to a each element of a collection and return a new array of results.

Installation

$ component install ndhoule/map
$ npm install @ndhoule/map

API

map(iterator : Function, collection : Object|Array|string) => Array

Produce a new array by passing each value in the input collection through an iterator function and accumulating the results. The iterator is passed three arguments: (value, index, collection).

var square = function(x) { return x * x; };

map(square, [1, 2, 3]);
//=> [1, 4, 9]

License

Released under the MIT license.

Keywords

FAQs

Last updated on 02 May 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc